home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / libs / dlfcn / makefile < prev   
Makefile  |  1997-07-20  |  698b  |  25 lines

  1. # Makefile for dlfcn for OS/2
  2. # (c) 1997, Klaus Gebhardt
  3.  
  4. # ****************************************************************************
  5. # This was written for the OS/2 port of Octave, but it is not part of Octave!
  6. # You can use the code UNMODIFIED. If you think changes are necessary,
  7. # please send me a mail (gebhardt@crunch.ikp.physik.th-darmstadt.de).
  8. # Thanks,
  9. #   Klaus Gebhardt
  10. # ****************************************************************************
  11.  
  12. CFLAGS = -Wall -O2 -m486
  13.  
  14. INCLUDES = dlfcn.h
  15. SOURCES  = dlfcn.c
  16. OBJECTS  = $(SOURCES:.c=.o)
  17. LIBRARY  = dlfcn.a dlfcn.lib
  18.  
  19. include ../makerules
  20.  
  21. dlfcn.a: $(OBJECTS)
  22. dlfcn.lib: dlfcn.a
  23. dlfcn.o: dlfcn.c dlfcn.h
  24.  
  25.